home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / events / FlexMouseEvent.as < prev    next >
Text File  |  2009-02-12  |  1KB  |  31 lines

  1. package mx.events
  2. {
  3.    import flash.display.InteractiveObject;
  4.    import flash.events.Event;
  5.    import flash.events.MouseEvent;
  6.    import mx.core.mx_internal;
  7.    
  8.    use namespace mx_internal;
  9.    
  10.    public class FlexMouseEvent extends MouseEvent
  11.    {
  12.       
  13.       public static const MOUSE_DOWN_OUTSIDE:String = "mouseDownOutside";
  14.       
  15.       public static const MOUSE_WHEEL_OUTSIDE:String = "mouseWheelOutside";
  16.       
  17.       mx_internal static const VERSION:String = "3.0.0.0";
  18.        
  19.       
  20.       public function FlexMouseEvent(param1:String, param2:Boolean = false, param3:Boolean = false, param4:Number = 0, param5:Number = 0, param6:InteractiveObject = null, param7:Boolean = false, param8:Boolean = false, param9:Boolean = false, param10:Boolean = false, param11:int = 0)
  21.       {
  22.          super(param1,param2,param3,param4,param5,param6,param7,param8,param9,param10,param11);
  23.       }
  24.       
  25.       override public function clone() : Event
  26.       {
  27.          return new FlexMouseEvent(type,bubbles,cancelable,localX,localY,relatedObject,ctrlKey,altKey,shiftKey,buttonDown,delta);
  28.       }
  29.    }
  30. }
  31.